home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / science / sm32a.zip / LIBRARY / CIRCLE.LI < prev    next >
Text File  |  1993-10-10  |  134b  |  5 lines

  1. #    circle(x,y,radius) draws a circle of radius at point(x,y)
  2. #    it must be in graphics mode
  3.  
  4. circle(x_, y_, r_) := arc(x,y,0,360,r)
  5.